home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Almathera Ten Pack 2: CDPD 1
/
Almathera Ten on Ten - Disc 2: CDPD 1.iso
/
pd
/
176-200
/
183
/
mklib
/
edlib
/
strrpos.c
< prev
next >
Wrap
C/C++ Source or Header
|
1995-03-13
|
479b
|
23 lines
/* edlib version 1.0 of 04/08/88 */
/*
strrpos searches the null-terminated string string for the last
occurance of the character "key". It returns either the position
or -1 if it is not found.
*/
int strrpos(string,key)
char *string;
char key;
{
char *temp;
if ( !key )
return(strlen(string));
for (temp = string + strlen(string) - 1; temp >= string ; temp-- )
if ( *temp == key)
return(temp - string);
return(-1);
}